home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue52 / HTML / Code / WinClient / WinClient.dpr < prev    next >
Encoding:
Text File  |  1999-10-17  |  251 b   |  15 lines

  1. program WinClient;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'Main.pas' {frmMain},
  6.   SML_Handler_TLB in '..\AppServer\SML_Handler_TLB.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TfrmMain, frmMain);
  13.   Application.Run;
  14. end.
  15.